home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / xinetd / fsma.2.0.1 / impl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-08  |  572 b   |  29 lines

  1. /*
  2.  * (c) Copyright 1992 by Panagiotis Tsirigotis
  3.  * All rights reserved.  The file named COPYRIGHT specifies the terms 
  4.  * and conditions for redistribution.
  5.  */
  6.  
  7. /*
  8.  * $Id: impl.h,v 5.1 1992/10/10 07:23:18 panos Exp $
  9.  */
  10.  
  11. #ifndef NULL
  12. #define NULL 0
  13. #endif
  14.  
  15. #ifndef FALSE
  16. #define FALSE     0
  17. #define TRUE      1
  18. #endif
  19.  
  20. #define PRIVATE                     static
  21.  
  22. #define SLOTS_PER_CHUNK             100
  23.  
  24. #define POINTER                            __fsma_pointer
  25. #define MINSIZE                     sizeof( POINTER )
  26.  
  27. #define CHUNK_HEADER( p )           ((union __fsma_chunk_header *)(p))
  28.  
  29.